home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- set -e
-
- case "${1}" in
- configure)
- update-alternatives \
- --install /usr/bin/poedit poedit /usr/bin/poeditor 120 \
- --slave /usr/share/man/man1/poedit.1.gz poedit.1.gz \
- /usr/share/man/man1/poeditor.1.gz
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
-
- ;;
-
- *)
- echo "postinst called with unknown argument \`${1}'" >&2
- exit 1
- ;;
- esac
-
- # Automatically added by dh_installmenu
- if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
- update-menus
- fi
- # End automatically added section
-
-
- exit 0
-